home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ASMVLA00.ZIP / ASMINTRO.TXT < prev    next >
Text File  |  1993-03-22  |  22KB  |  587 lines

  1.  
  2. ────────────────────────────────────────────────────────────────────────────
  3.     VLA 3/93  Introduction to ASSEMBLER
  4. ────────────────────────────────────────────────────────────────────────────
  5.  
  6. Here's something to help those of you who were having trouble understanding
  7. the instructional programs we released.  Dreaden made these files for the 
  8. Kabal and myself when we were just learning.  These files go over some of 
  9. the basic concepts of assembler.  Bonus of bonuses.  These files also have 
  10. programs imbedded in them.  Most of them have a ton of comments so even
  11. the beginning programmers should be able to figure them out.
  12.  
  13. If you'd like to learn more, post a message on Phantasm.  We need to know
  14. where you're interests are before we can make more files to bring out the
  15. little programmers that are hiding inside all of us.
  16.  
  17.     Lithium/VLA
  18.  
  19. ────────────────────────────────────────────────────────────────────────────
  20.  
  21.     First thing ya need to know is a little jargon so you can talk about 
  22. the basic data structures with your friends and neighbors.  They are (in
  23. order of increasing size) BIT, NIBBLE, BYTE, WORD, DWORD, FWORD, PWORD and
  24. QWORD, PARA, KiloByte, MegaByte.  The ones that you'll need to memorize are
  25. BYTE, WORD, DWORD, KiloByte, and MegaByte.  The others aren't used all that 
  26. much, and you wont need to know them to get started.  Here's a little 
  27. graphical representation of a few of those data structures:
  28.  
  29. (The zeros in between the || is a graphical representation of the number of
  30. bits in that data structure.)
  31.  
  32. ──────
  33. 1 BIT :     |0|
  34.  
  35.     The simplest piece of data that exists.  Its either a 1 or a zero.
  36.     Put a string of them together and you have a BASE-2 number system.
  37.     Meaning that instead of each 'decimal' place being worth 10, its only 
  38.     worth 2.  For instance: 00000001 = 1; 00000010 = 2; 00000011 = 3, etc..
  39.  
  40. ──────
  41. 1 NIBBLE:   |0000|
  42. 4 BITs
  43.  
  44.     The NIBBLE is half a BYTE or four BITS.  Note that it has a maximum value
  45.     of 15 (1111 = 15).  Not by coincidence, HEXADECIMAL, a base 16 number 
  46.     system (computers are based on this number system) also has a maximum 
  47.     value of 15, which is represented by the letter 'F'.  The 'digits' in
  48.     HEXADECIMAL are (in increasing order): 
  49.     
  50.     "0123456789ABCDEF"
  51.  
  52.     The standard notation for HEXADECIMAL is a zero followed by the number        
  53.     in HEX followed by a lowercase "h"  For instance: "0FFh" = 255 DECIMAL.
  54.  
  55. ──────
  56. 1 BYTE      |00000000|
  57. 2 NIBBLEs    └─ AL ─┘
  58. 8 BITs
  59.  
  60.     The BYTE is the standard chunk of information.  If you asked how much 
  61.     memory a machine had, you'd get a response stating the number of BYTEs it
  62.     had. (Usually preceded by a 'Mega' prefix).  The BYTE is 8 BITs or 
  63.     2 NIBBLEs.  A BYTE has a maximum value of 0FFh (= 255 DECIMAL).  Notice
  64.     that because a BYTE is just 2 NIBBLES, the HEXADECIMAL representation is
  65.     simply two HEX digits in a row (ie. 013h, 020h, 0AEh, etc..)
  66.  
  67.     The BYTE is also that size of the 'BYTE sized' registers - AL, AH, BL, BH,
  68.     CL, CH, DL, DH.
  69.  
  70. ──────
  71. 1  WORD      |0000000000000000|
  72. 2  BYTEs      └─ AH ─┘└─ AL ─┘     
  73. 4  NIBBLEs    └───── AX ─────┘
  74. 16 BITs
  75.  
  76.     The WORD is just two BYTEs that are stuck together.  A word has a maximum 
  77.     value of 0FFFFh (= 65,535).  Since a WORD is 4 NIBBLEs, it is represented
  78.     by 4 HEX digits.  This is the size of the 16bit registers on the 80x86
  79.     chips.  The registers are: AX, BX, CX, DX, DI, SI, BP, SP, CS, DS, ES, SS,
  80.     and IP.  Note that you cannot directly change the contents of IP or CS in 
  81.     any way.  They can only be changed by JMP, CALL, or RET.
  82.  
  83. ──────
  84. 1  DWORD
  85. 2  WORDs     |00000000000000000000000000000000|
  86. 4  BYTEs      │               └─ AH ─┘└─ AL ─┘     
  87. 8  NIBBLEs    │               └───── AX ─────┘
  88. 32 BITs       └──────────── EAX ─────────────┘
  89.  
  90.     A DWORD (or "DOUBLE WORD") is just two WORDs, hence the name DOUBLE-WORD.
  91.     This can have a maximum value of 0FFFFFFFFh (8 NIBBLEs, 8 'F's) which
  92.     equals 4,294,967,295.  Damn large.  This is also the size or the 386's
  93.     32bit registers: EAX, EBX, ECX, EDX, EDI, ESI, EBP, ESP, EIP.  The 'E '
  94.     denotes that they are EXTENDED registers.  The lower 16bits is where the 
  95.     normal 16bit register of the same name is located. (See diagram.)
  96.  
  97. ──────
  98. 1    KILOBYTE   |-lots of zeros (8192 of 'em)-|
  99. 256  DWORDs
  100. 512  WORDs
  101. 1024 BYTEs
  102. 2048 NIBBLEs
  103. 8192 BITs
  104.  
  105.     We've all heard the term KILOBYTE byte, before, so I'll just point out
  106.     that a KILOBYTE, despite its name, is -NOT- 1000 BYTEs.  It is actually
  107.     1024 bytes.
  108.  
  109. ──────
  110.           1 MEGABYTE   |-even more zeros (8,388,608 of 'em)-|
  111.       1,024 KILOBYTEs
  112.     262,144 DWORDs
  113.     524,288 WORDs
  114.   1,048,576 BYTEs
  115.   2,097,152 NIBBLEs
  116.   8,388,608 BITs
  117.  
  118.     Just like the KILOBYTE, the MEGABYTE is -NOT- 1 million bytes.  It is
  119.     actually 1024*1024 BYTEs, or 1,048,578 BYTEs
  120.  
  121. ──────────────────────────────
  122.  
  123.     Now that we know what the different data types are, we will investigate
  124.     an annoying little aspect of the 80x86 processors.  I'm talking about 
  125.     nothing other than SEGMENTS & OFFSETS!
  126.  
  127.  
  128. SEGMENTS & OFFSETS:
  129. ──────────────────
  130.     Pay close attention, because this topic is (I believe) the single most
  131.     difficult (or annoying, once you understand it) aspect of ASSEMBLER.
  132.  
  133. An OverView:
  134.  
  135.     The original designers of the 8088, way back when dinasaurs ruled the 
  136.     planet, decided that no one would ever possibly need more than one MEG
  137.     (short for MEGABYTE :) of memory.  So they built the machine so that it 
  138.     couldn't access above 1 MEG. To access the whole MEG, 20 BITs are needed.
  139.     Problem was that the registers only had 16 bits, and if the used two
  140.     registers, that would be 32 bits, which was way too much (they thought.)  
  141.     So they came up with a rather brilliant (blah) way to do their addressing-
  142.     they would use two registers.  They decided that they would not be 32bits, 
  143.     but the two registers would create 20 bit addressing.  And thus Segments
  144.     and OFfsets were born.  And now the confusing specifics.
  145.  
  146. ──────────────────
  147.     
  148. OFFSET  = SEGMENT*16
  149. SEGMENT = OFFSET /16    ;note that the lower 4 bits are lost
  150.  
  151.                  
  152. SEGMENT * 16    |0010010000010000----|  range (0 to 65535) * 16
  153.  +                    
  154. OFFSET          |----0100100000100010|  range (0 to 65535)
  155.  =
  156. 20 bit address  |00101000100100100010|  range 0 to 1048575 (1 MEG)
  157.                  └───── DS ─────┘
  158.                      └───── SI ─────┘
  159.                      └─ Overlap─┘
  160.  
  161.  This shows how DS:SI is used to construct a 20 bit address.
  162.  
  163. Segment registers are: CS, DS, ES, SS. On the 386+ there are also FS & GS
  164.  
  165. Offset registers  are: BX, DI, SI, BP, SP, IP.  In 386+ protected mode, ANY
  166.         general register (not a segment register) can be used as an Offset
  167.         register.  (Except IP, which you can't access.)
  168.  
  169.     CS:IP => Points to the currently executing code.
  170.     SS:SP => Points to the current stack position.
  171.     
  172. ──────────────────
  173.  
  174.     If you'll notice, the value in the SEGMENT register is multiplied by
  175.     16 (or shifted left 4 bits) and then added to the OFFSET register.
  176.     Together they create a 20 bit address.  Also Note that there are MANY
  177.     combinations of the SEGMENT and OFFSET registers that will produce the 
  178.     same address.  The standard notation for a SEGment/OFFset pair is:
  179.  
  180. ────
  181. SEGMENT:OFFSET or A000:0000 ( which is, of course in HEX )
  182.  
  183.     Where SEGMENT = 0A000h and OFFSET = 00000h.  (This happens to be the 
  184.     address of the upper left pixel on a 320x200x256 screen.)
  185. ────
  186.  
  187.     You may be wondering what would happen if you were to have a segment
  188.     value of 0FFFFh and an offset value of 0FFFFh.  
  189.  
  190.     Take notice: 0FFFFh * 16 (or 0FFFF0h ) + 0FFFFh = 1,114,095, which is 
  191.       definately larger than 1 MEG (which is 1,048,576.)
  192.  
  193.     This means that you can actually access MORE than 1 meg of memory!  
  194.     Well, to actually use that extra bit of memory, you would have to enable
  195.     something called the A20 line, which just enables the 21st bit for
  196.     addressing.  This little extra bit of memory is usually called
  197.     "HIGH MEMORY" and is used when you load something into high memory or
  198.     say DOS = HIGH in your AUTOEXEC.BAT file.  (HIMEM.SYS actually puts it up
  199.     there..)  You don't need to know that last bit, but hey, knowledge is 
  200.     good, right?
  201.  
  202. ──────────────────────
  203.     THE REGISTERS:
  204. ──────────────────────
  205.  
  206.     I've mentioned AX, AL, and AH before, and you're probably wondering what
  207.     exactly they are.  Well, I'm gonna go through one by one and explain
  208.     what each register is and what it's most common uses are.  Here goes:
  209.  
  210. ────
  211. AX (AH/AL): 
  212.     AX is a 16 bit register which, as metioned before, is merely two bytes
  213.     attached together.  Well, for AX, BX, CX, & DX you can independantly 
  214.     access each part of the 16 bit register through the 8bit (or byte sized)
  215.     registers.  For AX, they are AL and AH, which are the Low and High parts
  216.     of AX, respectivly.  It should be noted that any change to AL or AH, 
  217.     will change AX.  Similairly any changes to AX may or may not change AL and
  218.     AH.  For instance:
  219.  
  220. ────────
  221. Let's suppose that AX = 00000h (AH and AL both = 0, too) 
  222.  
  223.     mov     AX,0
  224.     mov     AL,0
  225.     mov     AH,0
  226.  
  227. Now we set AL = 0FFh.  
  228.  
  229.     mov     AL,0FFh
  230.  
  231. :AX => 000FFh  ;I'm just showing ya what's in the registers
  232. :AL =>   0FFh
  233. :AH => 000h
  234.  
  235. Now we increase AX by one:
  236.  
  237.     INC     AX
  238.  
  239. :AX => 00100h (= 256.. 255+1= 256)
  240. :AL =>   000h (Notice that the change to AX changed AL and AH)
  241. :AH => 001h
  242.  
  243. Now we set AH = 0ABh (=171)
  244.  
  245.     mov     AH,0ABh
  246.  
  247. :AX => 0AB00h
  248. :AL =>   000h
  249. :AH => 0ABh
  250.  
  251. Notice that the first example was just redundant...
  252. We could've set AX = 0 by just doing
  253.  
  254.     mov     ax,0
  255.  
  256. :AX => 00000h
  257. :AL =>   000h
  258. :AH => 000h
  259.  
  260. I think ya got the idea...
  261. ────────
  262.  
  263.     SPECIAL USES OF AX:
  264.         Used as the destination of an IN (in port) 
  265.             ex: IN  AL,DX
  266.                 IN  AX,DX
  267.  
  268.         Source for the output for an OUT           
  269.             ex: OUT DX,AL
  270.                 OUT DX,AX
  271.  
  272.         Destination for LODS (grabs byte/word from [DS:SI] and INCreses SI)
  273.             ex: lodsb   (same as:   mov al,[ds:si] ; inc si )
  274.                 lodsw   (same as:   mov ax,[ds:si] ; inc si ; inc si )
  275.  
  276.         Source for STOS      (puts AX/AL into [ES:DI] and INCreses DI)
  277.             ex: stosb   (same as:   mov [es:di],al ; inc di )
  278.                 stosw   (same as:   mov [es:di],ax ; inc di ; inc di )
  279.  
  280.         Used for MUL, IMUL, DIV, IDIV
  281. ────
  282. BX (BH/BL): same as AX (BH/BL)
  283.  
  284.     SPECIAL USES:
  285.         As mentioned before, BX can be used as an OFFSET register.
  286.             ex: mov ax,[ds:bx]  (grabs the WORD at the address created by
  287.                                     DS and BX)
  288.  
  289. CX (CH/CL): Same as AX
  290.     
  291.     SPECIAL USES:
  292.         Used in REP prefix to repeat an instruction CX number of times
  293.             ex: mov cx,10
  294.                 mov ax,0
  295.                 rep stosb ;this would write 10 zeros to [ES:DI] and increase
  296.                           ;DI by 10.
  297.         Used in LOOP
  298.             ex: mov cx,100
  299.             THELABEL:
  300.  
  301.                 ;do something that would print out 'HI'
  302.  
  303.                 loop THELABEL   ;this would print out 'HI' 100 times
  304.                                 ;the loop is the same as: dec cx
  305.                                                           jne THELABAL
  306.             
  307. DX (DH/DL): Same as above
  308.     SPECIAL USES:
  309.         USED in word sized MUL, DIV, IMUL, IDIV as DEST for high word
  310.                 or remainder
  311.  
  312.             ex: mov bx,10
  313.                 mov ax,5
  314.                 mul bx  ;this multiplies BX by AX and puts the result 
  315.                         ;in DX:AX
  316.  
  317.             ex: (continue from above)
  318.                 div bx  ;this divides DX:AX by BX and put the result in AX and
  319.                         ;the remainder (in this case zero) in DX
  320.  
  321.         Used as address holder for IN's, and OUT's (see ax's examples)
  322.             
  323. INDEX REGISTERS:  
  324.  
  325.     DI: Used as destination address holder for stos, movs (see ax's examples)
  326.         Also can be used as an OFFSET register
  327.  
  328.     SI: Used as source address holder for lods, movs (see ax's examples)
  329.         Also can be used as OFFSET register
  330.  
  331.         Example of MOVS:
  332.             movsb   ;moves whats at [DS:SI] into [ES:DI] and increases
  333.             movsw   ; DI and SI by one for movsb and 2 for movsw
  334.  
  335.         NOTE: Up to here we have assumed that the DIRECTION flag was cleared.
  336.             If the direction flag was set, the DI & SI would be DECREASED 
  337.             instead of INCREASED.
  338.             ex:     cld     ;clears direction flag
  339.                     std     ;sets direction flag
  340.  
  341. STACK RELATED INDEX REGISTERS:
  342.     BP: Base Pointer. Can be used to access the stack. Default segment is
  343.         SS.  Can be used to access data in other segments throught the use
  344.         of a SEGMENT OVERRIDE.
  345.  
  346.         ex: mov al,[ES:BP] ;moves a byte from segment ES, offset BP
  347.             Segment overrides are used to specify WHICH of the 4 (or 6 on the
  348.             386) segment registers to use.
  349.  
  350.     SP: Stack Pointer. Does just that.  Segment overrides don't work on this 
  351.         guy.  Points to the current position in the stack.  Don't alter unless
  352.         you REALLY know what you are doing.
  353.         
  354. SEGMENT REGISTERS:
  355.     DS: Data segment- all data read are from the segment pointed to be this
  356.         segment register unless a segment overide is used.
  357.         Used as source segment for movs, lods
  358.         This segment also can be thought of as the "Default Segment" because
  359.         if no segment override is present, DS is assumed to be the segmnet
  360.         you want to grab the data from.
  361.  
  362.     ES: Extra Segment- this segment is used as the destination segment
  363.         for movs, stos
  364.         Can be used as just another segment...  You need to specify [ES:░░]
  365.         to use this segment.
  366.  
  367.     FS: (386+) No particular reason for it's name... I mean, we have CS, DS,
  368.         and ES, why not make the next one FS? :)  Just another segment..
  369.     
  370.     GS: (386+) Same as FS
  371.  
  372.     
  373. OTHERS THAT YOU SHOULDN'T OR CAN'T CHANGE:
  374.     CS: Segment that points to the next instruction- can't change directly
  375.     IP: Offset pointer to the next instruction- can't even access
  376.         The only was to change CS or IP would be through a JMP, CALL, or RET
  377.  
  378.     SS: Stack segment- don't mess with it unless you know what you're
  379.         doing.  Changing this will probably crash the computer.  This is the
  380.         segment that the STACK resides in.
  381.  
  382. ────────
  383. Heck, as long as I've mentioned it, lets look at the STACK:
  384.  
  385.     The STACK is an area of memory that has the properties of a STACK of
  386.     plates- the last one you put on is the first one take off.  The only
  387.     difference is that the stack of plates is on the roof.  (Ok, so that
  388.     can't really happen... unless gravity was shut down...)  Meaning that
  389.     as you put another plate (or piece of data) on the stack, the STACK grows
  390.     DOWNWARD.  Meaning that the stack pointer is DECREASED after each PUSH,
  391.     and INCREASED after each POP.
  392.  
  393.   _____ Top of the allocated memory in the stack segment (SS)
  394.     ■ 
  395.     ■
  396.     ■
  397.     ■ « SP (the stack pointer points to the most recently pushed byte)
  398.  
  399.     Truthfully, you don't need to know much more than a stack is Last In,
  400.     First Out (LIFO).
  401.  
  402.   WRONG ex: push    cx  ;this swaps the contents of CX and AX
  403.             push    ax  ;of course, if you wanted to do this quicker, you'd
  404.             ...
  405.             pop     cx  ;just say XCHG cx,ax
  406.             pop     ax  ; but thats not my point.
  407.  
  408.   RIGHT ex: push    cx  ;this correctly restores AX & CX  
  409.             push    ax
  410.             ...
  411.             pop     ax
  412.             pop     cx
  413.  
  414. ────────────
  415.  
  416. Now I'll do a quick run through on the assembler instructions that you MUST
  417. know:
  418.  
  419. ────
  420. MOV:
  421.  
  422.     Examples of different addressing modes: 
  423.  
  424.         MOV ax,5        ;moves and IMMEDIATE value into ax (think 'AX = 5')
  425.         MOV bx,cx       ;moves a register into another register
  426.         MOV cx,[SI]     ;moves [DS:SI] into cx (the Default Segment is Used)
  427.         MOV [DI+5],ax   ;moves ax into [DS:DI+5]
  428.         MOV [ES:DI+BX+34],al    ;same as above, but has a more complicated
  429.                                 ;OFFSET (=DI+BX+34) and a SEGMENT OVERRIDE
  430.         MOV ax,[546]    ;moves whats at [DS:546] into AX
  431.                         
  432.     Note that the last example would be totally different if the brackets 
  433.     were left out.  It would mean that an IMMEDIATE value of 546 is put into
  434.     AX, instead of what's at offset 546 in the Default Segment.
  435.     
  436. ANOTHER STANDARD NOTATION TO KNOW:
  437.     Whenever you see brackets [] around something, it means that it refers to 
  438.     what is AT that offset.  For instance, say you had this situation:
  439.  
  440. ────────────
  441. MyData  dw  55
  442.     ...
  443.     mov ax,MyData
  444. ────────────
  445.  
  446.     What is that supposed to mean?  Is MyData an Immediate Value?  This is
  447.     confusing and for our purposes WRONG.  The 'Correct' way to do this would
  448.     be:
  449.  
  450. ────────────
  451. MyData  dw  55
  452.     ...
  453.     mov ax,[MyData]
  454. ────────────
  455.  
  456.     This is clearly moving what is AT the address of MyData, which would be
  457.     55, and not moving the OFFSET of MyData itself.  But what if you 
  458.     actually wanted the OFFSET?  Well, you must specify directly.
  459.  
  460. ────────────
  461. MyData  dw  55
  462.     ...
  463.     mov ax,OFFSET MyData
  464. ────────────
  465.  
  466.     Similiarly, if you wanted the SEGMENT that MyData was in, you'd do this:
  467.  
  468. ────────────
  469. MyData  dw  55
  470.     ...
  471.     mov ax,SEG MyData
  472. ────────────
  473.  
  474. ────────────────────────
  475. INT:
  476.     Examples:
  477.         INT 21h     ;calls DOS standard interrupt # 21h
  478.         INT 10h     ;the Video BIOS interrupt..
  479.         
  480.     INT is used to call a subroutine that performs some function that you'd
  481.     rather not write yourself.  For instance, you would use a DOS interrupt 
  482.     to OPEN a file.  You would similiarly use the Video BIOS interrupt to
  483.     set the screen mode, move the cursor, or to do any other function that 
  484.     would be difficult to program.
  485.  
  486.     Which subroutine the interrupt preforms is USUALLY specified by AH.
  487.     For instance, if you wanted to print a message to the screen you'd
  488.     use INT 21h, subfunction 9 by doing this:
  489.  
  490. ────────────
  491.     mov ah,9
  492.     int 21h
  493. ────────────
  494.  
  495.     Yes, it's that easy.  Of course, for that function to do anything, you
  496.     need to specify WHAT to print.  That function requires that you have
  497.     DS:DX be a FAR pointer that points to the string to display.  This string
  498.     must terminate with a dollar sign.  Here's an example:
  499.  
  500. ────────────
  501. MyMessage db    "This is a message!$" 
  502.     ...
  503.     mov     dx,OFFSET MyMessage
  504.     mov     ax,SEG MyMessage
  505.     mov     ds,ax
  506.     mov     ah,9
  507.     int     21h
  508.     ...
  509. ────────────
  510.  
  511.     The DB, like the DW (and DD) merely declares the type of a piece of data.
  512.  
  513.         DB => Declare Byte (I think of it as 'Data Byte')
  514.         DW => Declare Word
  515.         DD => Declare Dword
  516.     
  517.     Also, you may have noticed that I first put the segment value into AX
  518.     and then put it into DS.  I did that because the 80x86 does NOT allow
  519.     you to put an immediate value into a segment register.  You can, however,
  520.     pop stuff into a Segment register or mov an indexed value into the
  521.     segment register.  A few examples:
  522.  
  523. ────────────
  524.   LEGAL:
  525.     mov     ax,SEG MyMessage
  526.     mov     ds,ax
  527.  
  528.     push    SEG Message
  529.     pop     ds
  530.  
  531.     mov     ds,[SegOfMyMessage]     
  532.             ;where [SegOfMyMessage] has already been loaded with 
  533.             ; the SEGMENT that MyMessage resides in
  534.   ILLEGAL:
  535.     mov     ds,10
  536.     mov     ds,SEG MyMessage
  537. ────────────
  538.  
  539. Well, that's about it for what you need to know to get started...
  540.  
  541. ────────────────────────────────────────────────────────────────────────
  542.     And now the FRAME for an ASSEMBLER program.
  543. ──────────────────────────────────────────────────────────────────────
  544.  
  545. The Basic Frame for an Assembler program using Turbo Assembler simplified
  546.     directives is:
  547.  
  548. ;===========-
  549.  
  550.     DOSSEG  ;This arranges the segments in order according DOS standards
  551.             ;CODE, DATA, STACK
  552.     .MODEL SMALL    ;dont worry about this yet
  553.     .STACK  200h    ;tells the compiler to put in a 200h byte stack
  554.     .CODE           ;starts code segment
  555.  
  556.     ASSUME  CS:@CODE, DS:@CODE 
  557.  
  558. START:      ;generally a good name to use as an entry point
  559.  
  560.     mov     ax,4c00h
  561.     int     21h
  562.  
  563. END START
  564.  
  565. ;===========- By the way, a semicolon means the start of a comment.
  566.  
  567.     If you were to enter this program and TASM & TLINK it, it would execute
  568.     perfectly.  It will do absolutly nothing, but it will do it well.
  569.  
  570.     What it does:
  571.         Upon execution, it will jump to START. move 4c00h into AX,
  572.         and call the DOS interrupt, which exits back to DOS.
  573.  
  574.         Outout seen: NONE
  575. ────────────────────────────────────────────────────────────────────────
  576.  
  577. That's nice, eh?  If you've understood the majority of what was presented 
  578. in this document, you are ready to start programming!
  579.  
  580. See ASM0.TXT and ASM0.ASM to continue this wonderful assembler stuff...
  581.  
  582.  
  583. Written By Draeden/VLA
  584.  
  585.  
  586.  
  587.